Sample: dhtmlxGrid Fast row adding dhtmlxGrid main page
X

While the most fast way for loading data is to load them from XML, in some cases, group of rows must be added by script. This extension allows to do it much faster (2-5 times related to normal case)


 
    <script>
 
        mygrid = new dhtmlXGridObject('gridbox');
        ...
        mygrid.startFastOperations();
        ...
        //add all 100 row here
        mygrid.addRow(i,[0,'fast',i]);
        ...
        mygrid.stopFastOperations();
</script>